/******************************************************************************* * Copyright (c) 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation ******************************************************************************/ package org.eclipse.ui.tests.progress; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.jobs.Job; /** * * A job that completes very quicky and returns the specified status * * @since 3.6 * @author Prakash G.R. (grprakash@in.ibm.com) * */ public class DummyJob extends Job { private final IStatus status; public DummyJob(String name, IStatus status) { super(name); this.status = status; } protected IStatus run(IProgressMonitor monitor) { monitor.beginTask(getName() + " starts now", 10); try { for (int i = 0; i < 10; i++) { try { Thread.sleep(10); } catch (InterruptedException e) { // ignore } monitor.worked(1); if (monitor.isCanceled()) break; } return status; } finally { monitor.done(); } } }